home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / pao / towns / cdplay / src / sndplay.h < prev    next >
Text File  |  1991-10-18  |  1KB  |  41 lines

  1. /* << High C V1.4  &  386ASM V2.0 >> ******************************************
  2. **
  3. **    SND ファイルを再生用ヘッダ
  4. **
  5. **    1991.01.29 : CREATE
  6. **    1991.01.29 : FINISH
  7. **
  8. **    < HISTORY >
  9. **    1991.01.29 : CREATE
  10. **
  11. **    < note > : TABS = 4
  12. **
  13. **    Programmed by Y.Hirata ( Nifty ID : NAB03321 )
  14. **
  15. ******************************************************************************/
  16.  
  17. typedef unsigned char    uchar ;
  18. typedef unsigned short    ushort ;
  19. typedef unsigned long    ulong ;
  20. typedef unsigned int    uint ;
  21.  
  22. typedef struct _SNDPLAY_DTA {
  23.     char    _reserved[21] ;                        /*  reserved area            */
  24.     char    _attrib ;                            /*  attribute byte            */
  25.     ushort    _ftime ;                             /*  time of file            */
  26.     ushort    _fdate ;                            /*  date of file            */
  27.     ulong    _fsize ;                            /*  file size                */
  28.     char    d_name[13] ;                        /*  packed file name        */
  29. } SNDPLAY_DTA ;
  30.  
  31. /*-----------------------------------------------------------------------------
  32. **    プロトタイプ宣言
  33. -----------------------------------------------------------------------------*/
  34. void SNDPLAY_setdta( SNDPLAY_DTA * ) ;
  35. int SNDPLAY_firstsearch( char *,int,SNDPLAY_DTA * ) ;
  36. int SNDPLAY_getfsize( int,char * ) ;
  37. int SNDPLAY_load( int,char * ) ;
  38. int SNDPLAY_play( int,char * ) ;
  39. void SNDPLAY_stop( int ) ;
  40.  
  41.